← Index
NYTProf Performance Profile   
For starman worker -M FindBin --max-requests 50 --workers 2 --user=kohadev-koha --group kohadev-koha --pid /var/run/koha/kohadev/plack.pid --daemonize --access-log /var/log/koha/kohadev/plack.log --error-log /var/log/koha/kohadev/plack-error.log -E deployment --socket /var/run/koha/kohadev/plack.sock /etc/koha/sites/kohadev/plack.psgi
  Run on Fri Jan 8 13:01:18 2016
Reported on Fri Jan 8 13:01:37 2016

Filename(eval 1116)[/usr/share/perl5/CGI.pm:932]
StatementsExecuted 4 statements in 8µs
Eval Invoked At/usr/share/perl5/CGI.pm line 932
Sibling evals1, 2, 3, 4
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
0000s0sCGI::::cacheCGI::cache
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package CGI; sub cache {
215µs12µs my($self,$new_value) = self_or_default(@_);
# spent 2µs making 1 call to CGI::self_or_default
31300ns $new_value = '' unless $new_value;
41100ns if ($new_value ne '') {
5 $self->{'cache'} = $new_value;
6 }
713µs return $self->{'cache'};
8}
9
10;